home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / cli / gengui21.lha / Gengui2.1 / Examples / steuer.gui < prev    next >
Text File  |  1995-10-12  |  1KB  |  91 lines

  1. #c_source
  2.  
  3. #define LIST_ID 1
  4. #define DATUM_ID 2
  5. #define FIRMA_ID 3
  6. #define BEMERKUNG_ID 4
  7. #define BETRAG_ID 5
  8. #define LOESCHEN_ID 6
  9. #define HOCH_ID 7
  10. #define RUNTER_ID 8
  11. #define EINFUEGEN_ID 9
  12.  
  13. #end_source
  14.  
  15.  
  16. Projectname TestPro
  17.  
  18. vbox
  19.    xspace 3
  20.    yspace 3
  21.  
  22.    vbox
  23.       stdline 1
  24.    end
  25.  
  26.    button
  27.       vrel 1
  28.       text "Liste"
  29.       id LIST_ID
  30.       flags PLACETEXT_ABOVE
  31.    end
  32.  
  33.    vbox
  34.       stdline 1
  35.    end
  36.  
  37.    hbox
  38.       stdline 1
  39.       string
  40.          text "Datum:"
  41.          flags PLACETEXT_ABOVE
  42.          id DATUM_ID
  43.          tags GTST_MaxChars,256
  44.       end
  45.       string
  46.          text "Firma"
  47.          flags PLACETEXT_ABOVE
  48.          id FIRMA_ID
  49.          tags GTST_MaxChars,256
  50.       end
  51.       string
  52.          text "Bemerkung:"
  53.          flags PLACETEXT_ABOVE
  54.          id BEMERKUNG_ID
  55.          tags GTST_MaxChars,256
  56.       end
  57.       string
  58.          text "Betrag:"
  59.          flags PLACETEXT_ABOVE
  60.          id BETRAG_ID
  61.          tags GTST_MaxChars,256
  62.       end
  63.    end
  64.    hbox
  65.       stdline 1
  66.       button
  67.          text "L÷schen"
  68.          id LOESCHEN_ID
  69.       end
  70.       button
  71.          text "hoch"
  72.          id HOCH_ID
  73.       end
  74.       button
  75.          text "runter"
  76.          id RUNTER_ID
  77.       end
  78.       button
  79.          text "einfⁿgen"
  80.          id EINFUEGEN_ID
  81.       end
  82.    end
  83. end
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.